home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr12 / apssb53.zip / INSTALL.BAT < prev    next >
DOS Batch File  |  1995-01-17  |  794b  |  26 lines

  1. @echo off
  2. cls
  3. if %1x == x goto HELP
  4. if %2x == x goto HELP
  5. echo This will copy StatTrak files from %1 to %2\ALLPROSB
  6. echo Press Ctrl Break to abort or any other key to continue
  7. pause >nul
  8. mkdir %2\ALLPROSB
  9. copy %1*.* %2\ALLPROSB
  10. cls
  11. echo starting StatTrak for Baseball...
  12. %2
  13. cd %2\ALLPROSB
  14. SB
  15. goto END
  16. :HELP
  17. echo StatTrak for Baseball Installation
  18. echo =======================================
  19. echo Usage: INSTALL [source:] [destination:]
  20. echo =======================================
  21. echo Example: INSTALL A: C:   - Will install StatTrak files from drive A: to
  22. echo                            drive C: (C:\ALLPROSB).
  23. echo Note: See the README file for the complete program documentation.
  24. echo       Type COPY README PRN and press [Enter] to print the documentation.
  25. :END
  26.